crypto/tls.Conn.out (field)

43 uses

	crypto/tls (current package)
		conn.go#L100: 	in, out   halfConn
		conn.go#L834: 		return c.out.setErrorLocked(&net.OpError{Op: "local error", Err: err})
		conn.go#L851: 	return c.out.setErrorLocked(&net.OpError{Op: "local error", Err: err})
		conn.go#L856: 	c.out.Lock()
		conn.go#L857: 	defer c.out.Unlock()
		conn.go#L901: 	payloadBytes := tcpMSSEstimate - recordHeaderLen - c.out.explicitNonceLen()
		conn.go#L902: 	if c.out.cipher != nil {
		conn.go#L903: 		switch ciph := c.out.cipher.(type) {
		conn.go#L905: 			payloadBytes -= c.out.mac.Size()
		conn.go#L915: 			payloadBytes -= c.out.mac.Size()
		conn.go#L975: 		c.quicWriteCryptoData(c.out.level, data)
		conn.go#L1021: 		outBuf, err = c.out.encrypt(outBuf, data[:m], c.config.rand())
		conn.go#L1033: 		if err := c.out.changeCipherSpec(); err != nil {
		conn.go#L1045: 	c.out.Lock()
		conn.go#L1046: 	defer c.out.Unlock()
		conn.go#L1062: 	c.out.Lock()
		conn.go#L1063: 	defer c.out.Unlock()
		conn.go#L1197: 	c.out.Lock()
		conn.go#L1198: 	defer c.out.Unlock()
		conn.go#L1200: 	if err := c.out.err; err != nil {
		conn.go#L1223: 		if _, ok := c.out.cipher.(cipher.BlockMode); ok {
		conn.go#L1226: 				return n, c.out.setErrorLocked(err)
		conn.go#L1233: 	return n + m, c.out.setErrorLocked(err)
		conn.go#L1327: 		c.out.Lock()
		conn.go#L1328: 		defer c.out.Unlock()
		conn.go#L1338: 			c.out.setErrorLocked(err)
		conn.go#L1342: 		newSecret := cipherSuite.nextTrafficSecret(c.out.trafficSecret)
		conn.go#L1343: 		c.out.setTrafficSecret(cipherSuite, QUICEncryptionLevelInitial, newSecret)
		conn.go#L1448: 	c.out.Lock()
		conn.go#L1449: 	defer c.out.Unlock()
		conn.go#L1577: 			c.out.Lock()
		conn.go#L1578: 			if !errors.As(c.out.err, &a) {
		conn.go#L1581: 			c.out.Unlock()
		handshake_client.go#L432: 	c.out.version = vers
		handshake_client.go#L737: 	c.out.prepareCipherSpec(c.vers, clientCipher, clientHash)
		handshake_client_tls13.go#L396: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, clientSecret)
		handshake_client_tls13.go#L698: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_client_tls13.go#L705: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelApplication, hs.trafficSecret)
		handshake_server.go#L169: 	c.out.version = c.vers
		handshake_server.go#L757: 	c.out.prepareCipherSpec(c.vers, serverCipher, serverHash)
		handshake_server_tls13.go#L616: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, serverSecret)
		handshake_server_tls13.go#L731: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_server_tls13.go#L747: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelApplication, serverSecret)